37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# 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"
|
|
}
|