diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-20 10:32:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-20 10:32:28 +0000 |
commit | e543ba5d8be86d7fb1c6e533c6b3e538678d40e6 (patch) | |
tree | 33806ce9a199dc2f59e9dd8afe6389390785287f /APKBUILD.proto | |
parent | c18022931dde75f8af838ac73ca236701ee09625 (diff) | |
download | abuild-e543ba5d8be86d7fb1c6e533c6b3e538678d40e6.tar.gz abuild-e543ba5d8be86d7fb1c6e533c6b3e538678d40e6.tar.bz2 abuild-e543ba5d8be86d7fb1c6e533c6b3e538678d40e6.tar.xz abuild-e543ba5d8be86d7fb1c6e533c6b3e538678d40e6.zip |
APKBUILD.proto: minor fixes
Diffstat (limited to 'APKBUILD.proto')
-rw-r--r-- | APKBUILD.proto | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/APKBUILD.proto b/APKBUILD.proto index ffc382a..0e08dea 100644 --- a/APKBUILD.proto +++ b/APKBUILD.proto @@ -4,24 +4,29 @@ # then please put 'unknown'. # Contributor: Your Name <youremail@domain.com> +# Maintainer: Your Name <youremail@domain.com> pkgname=NAME pkgver=VERSION pkgrel=0 pkgdesc="" arch="" url="" -license='GPL' +license="GPL" depends="" makedepends="" install= +subpackages="$pkgname-doc $pkgname-dev" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info make || return 1 - make DESTDIR="$pkgdir/" install + make DESTDIR="$pkgdir" install } md5sums="" #generate with 'abuild checksum' |