2008-10-25 11:00:18 +00:00
|
|
|
# This is an example APKBUILD file. Use this as a start to creating your own,
|
2016-05-23 23:37:15 +00:00
|
|
|
# and remove these comments.
|
2008-10-25 11:00:18 +00:00
|
|
|
# NOTE: Please fill out the license field for your package! If it is unknown,
|
|
|
|
# then please put 'unknown'.
|
|
|
|
|
|
|
|
# Contributor: Your Name <youremail@domain.com>
|
2009-01-20 10:32:28 +00:00
|
|
|
# Maintainer: Your Name <youremail@domain.com>
|
2008-10-25 11:00:18 +00:00
|
|
|
pkgname=NAME
|
|
|
|
pkgver=VERSION
|
|
|
|
pkgrel=0
|
|
|
|
pkgdesc=""
|
|
|
|
url=""
|
2010-12-30 14:24:17 +00:00
|
|
|
arch="all"
|
2009-01-20 10:32:28 +00:00
|
|
|
license="GPL"
|
2009-12-30 08:51:38 +00:00
|
|
|
depends=
|
2010-12-30 14:24:17 +00:00
|
|
|
depends_dev=
|
|
|
|
makedepends="$depends_dev"
|
2008-10-25 11:00:18 +00:00
|
|
|
install=
|
2009-07-01 13:17:02 +00:00
|
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
2018-07-27 11:31:46 +00:00
|
|
|
source="https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
2008-10-25 11:00:18 +00:00
|
|
|
|
2016-05-23 23:37:15 +00:00
|
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
2009-12-30 08:51:38 +00:00
|
|
|
|
|
|
|
prepare() {
|
2016-05-23 23:37:15 +00:00
|
|
|
cd "$builddir"
|
2009-12-30 08:51:38 +00:00
|
|
|
}
|
2008-10-25 11:00:18 +00:00
|
|
|
|
2009-12-30 08:51:38 +00:00
|
|
|
build() {
|
2016-05-23 23:37:15 +00:00
|
|
|
cd "$builddir"
|
2009-01-20 10:32:28 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info
|
2017-04-04 15:55:50 +00:00
|
|
|
make
|
2009-12-30 08:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-05-23 23:37:15 +00:00
|
|
|
cd "$builddir"
|
2017-04-04 15:55:50 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
2009-01-29 09:06:43 +00:00
|
|
|
|
2009-07-01 13:17:02 +00:00
|
|
|
# remove the 2 lines below (and this) if there is no init.d script
|
2009-01-29 09:06:43 +00:00
|
|
|
# install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
|
|
|
|
# install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
|
2008-10-25 11:00:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-29 09:50:29 +00:00
|
|
|
check() {
|
|
|
|
# uncomment the 2 lines below if there is a testsuite. we assume the testsuite
|
|
|
|
# is run using "make check", which is the default for autotools-based build systems.
|
|
|
|
# cd "$builddir"
|
2017-04-04 15:55:50 +00:00
|
|
|
# make check
|
2017-01-29 09:50:29 +00:00
|
|
|
}
|
|
|
|
|
2008-10-30 15:55:25 +00:00
|
|
|
md5sums="" #generate with 'abuild checksum'
|