diff --git a/simpleagenda-git/PKGBUILD b/simpleagenda-git/PKGBUILD new file mode 100644 index 0000000..63be312 --- /dev/null +++ b/simpleagenda-git/PKGBUILD @@ -0,0 +1,36 @@ +# Maintainer: Christoffer Müller Madsen +pkgname=simpleagenda-git +_pkgname=SimpleAgenda +pkgver=r923.742e52a +pkgrel=1 +pkgdesc="SystemPreferences for GNUstep" +arch=(i686 x86_64) +url="http://www.gnustep.org/experience/systempreferences.html" +license=('GPL') +install=$pkgname.install +depends=(gnustep-base gnustep-gui gnustep-back libical) +makedepends=('gcc-objc' + 'gnustep-make') +optdepends=('addresses: contacts support') +provides=(simpleagenda simpleagendas-git) +conflicts=(simpleagenda simpleagenda-git) +source=('src::git+https://github.com/poroussel/simpleagenda') +md5sums=('SKIP') + +pkgver() { + cd $srcdir + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +build() { + cd $srcdir/src + . /usr/share/GNUstep/Makefiles/GNUstep.sh + make +} + +package() { + cd $srcdir/src + make DESTDIR="$pkgdir/" install + install -D -m644 "$pkgdir/usr/lib/GNUstep/Applications/$_pkgname.app/Resources/$_pkgname.desktop" \ + "$pkgdir/usr/share/applications/$_pkgname.desktop" +} diff --git a/simpleagenda-git/simpleagenda-git.install b/simpleagenda-git/simpleagenda-git.install new file mode 100644 index 0000000..2eaa605 --- /dev/null +++ b/simpleagenda-git/simpleagenda-git.install @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +}