sample: use separate package()

This commit is contained in:
Natanael Copa 2009-12-30 08:51:38 +00:00
parent 3ea1ead589
commit 5847b5473b

View File

@ -11,8 +11,8 @@ pkgrel=0
pkgdesc="" pkgdesc=""
url="" url=""
license="GPL" license="GPL"
depends="" depends=
makedepends="" makedepends=
install= install=
subpackages="$pkgname-dev $pkgname-doc" subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
@ -21,14 +21,24 @@ source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
# remove if not used. # remove if not used.
# depends_dev="somepackage-dev" # depends_dev="somepackage-dev"
build() { _builddir="$srcdir"/$pkgname-$pkgver
cd "$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
build() {
cd "$_builddir"
./configure --prefix=/usr \ ./configure --prefix=/usr \
--sysconfdir=/etc \ --sysconfdir=/etc \
--mandir=/usr/share/man \ --mandir=/usr/share/man \
--infodir=/usr/share/info --infodir=/usr/share/info
make || return 1 make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
# remove the 2 lines below (and this) if there is no init.d script # remove the 2 lines below (and this) if there is no init.d script