add SimpleAgenda-git

This commit is contained in:
Christoffer Müller Madsen 2016-10-20 02:22:56 +02:00
parent 55e3cfdaae
commit 24c1809f0a
2 changed files with 47 additions and 0 deletions

36
simpleagenda-git/PKGBUILD Normal file
View File

@ -0,0 +1,36 @@
# Maintainer: Christoffer Müller Madsen <christoffer@guava.space>
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"
}

View File

@ -0,0 +1,11 @@
post_install() {
update-desktop-database -q
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}