diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-27 13:43:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-27 13:43:26 +0000 |
commit | b38df264043bea821dc66002033e3362b68ca0a0 (patch) | |
tree | 52a2ddd9af22e3cd572e3028eef4a0891bd4c6e7 /testing | |
parent | c806be8ffc9ac5e54810b8638445c79e6665e243 (diff) | |
download | aports-b38df264043bea821dc66002033e3362b68ca0a0.tar.bz2 aports-b38df264043bea821dc66002033e3362b68ca0a0.tar.xz |
testing/giggle: new aport
graphical frontend for the git content tracker
http://live.gnome.org/giggle
Diffstat (limited to 'testing')
-rw-r--r-- | testing/giggle/APKBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/giggle/APKBUILD b/testing/giggle/APKBUILD new file mode 100644 index 000000000..1d42084ef --- /dev/null +++ b/testing/giggle/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=giggle +pkgver=0.5 +pkgrel=0 +pkgdesc="graphical frontend for the git content tracker" +url="http://live.gnome.org/giggle" +arch="all" +license="GPL" +depends= +makedepends="gtk+-dev gtksourceview-dev vte-dev" +install="" +subpackages="$pkgname-dev" +source="http://ftp.gnome.org/pub/GNOME/sources/giggle/$pkgver/giggle-$pkgver.tar.bz2" + +_builddir="$srcdir"/giggle-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + --disable-evolution-data-server \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="91d2000fb97c5cb0bb0027edf444ecff giggle-0.5.tar.bz2" |