diff options
Diffstat (limited to 'unstable/genshi')
-rw-r--r-- | unstable/genshi/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/unstable/genshi/APKBUILD b/unstable/genshi/APKBUILD new file mode 100644 index 0000000000..65e4923903 --- /dev/null +++ b/unstable/genshi/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> +pkgname=genshi +_altname=Genshi +pkgver=0.5.1 +pkgrel=0 +pkgdesc="Python toolkit for stream-based generation of output for the web." +url="http://genshi.edgewall.org/" +license="GPL" +depends="python setuptools" +makedepends="" +install= +subpackages="$pkgname-dev $pkgname-doc" +source="http://ftp.edgewall.com/pub/genshi/Genshi-0.5.1.tar.bz2" + +build() { + cd "$srcdir"/$pkgname-$pkgver + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make DESTDIR="$pkgdir" install + + # remove the 2 lines below (and this) if there is no init.d script + # install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + # install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname +} + +md5sums="" #generate with 'abuild checksum' |