2009-01-16 07:16:18 -05:00
|
|
|
# This is an example of a PKGBUILD for splitting packages. Use this as a
|
|
|
|
# start to creating your own, and remove these comments. For more information,
|
|
|
|
# see 'man PKGBUILD'. NOTE: Please fill out the license field for your package!
|
|
|
|
# If it is unknown, then please put 'unknown'.
|
|
|
|
|
2010-04-03 17:20:00 -04:00
|
|
|
# Maintainer: Your Name <youremail@domain.com>
|
2009-01-16 07:16:18 -05:00
|
|
|
pkgname=('pkg1' 'pkg2')
|
2010-05-13 18:26:54 -04:00
|
|
|
pkgbase=BASE
|
2009-01-16 07:16:18 -05:00
|
|
|
pkgver=VERSION
|
|
|
|
pkgrel=1
|
2010-10-29 20:42:41 -04:00
|
|
|
epoch=
|
2009-01-16 07:16:18 -05:00
|
|
|
pkgdesc=""
|
|
|
|
arch=()
|
|
|
|
url=""
|
|
|
|
license=('GPL')
|
|
|
|
groups=()
|
|
|
|
depends=()
|
|
|
|
makedepends=()
|
2010-12-15 09:06:43 -05:00
|
|
|
checkdepends=()
|
2014-01-16 17:18:23 -05:00
|
|
|
optdepends=()
|
2009-01-16 07:16:18 -05:00
|
|
|
provides=()
|
|
|
|
conflicts=()
|
|
|
|
replaces=()
|
|
|
|
backup=()
|
|
|
|
options=()
|
|
|
|
install=
|
2009-10-08 10:10:05 -04:00
|
|
|
changelog=
|
2013-05-28 06:54:52 -04:00
|
|
|
source=("$pkgbase-$pkgver.tar.gz"
|
|
|
|
"$pkgname-$pkgver.patch")
|
2009-01-16 07:16:18 -05:00
|
|
|
noextract=()
|
2014-02-01 19:04:07 -05:00
|
|
|
md5sums=()
|
2014-06-29 03:21:55 -04:00
|
|
|
validpgpkeys=()
|
2009-01-16 07:16:18 -05:00
|
|
|
|
2013-04-23 02:14:29 -04:00
|
|
|
prepare() {
|
2013-10-14 01:55:39 -04:00
|
|
|
cd "$pkgname-$pkgver"
|
2013-04-23 02:14:29 -04:00
|
|
|
patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
|
|
|
|
}
|
|
|
|
|
2009-01-16 07:16:18 -05:00
|
|
|
build() {
|
2013-03-10 15:56:12 -04:00
|
|
|
cd "$pkgbase-$pkgver"
|
2012-11-16 18:31:43 -05:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
2009-01-16 07:16:18 -05:00
|
|
|
}
|
|
|
|
|
2010-12-15 09:06:43 -05:00
|
|
|
check() {
|
2013-03-10 15:56:12 -04:00
|
|
|
cd "$pkgname-$pkgver"
|
2012-11-16 18:31:43 -05:00
|
|
|
make -k check
|
2010-12-15 09:06:43 -05:00
|
|
|
}
|
|
|
|
|
2009-01-16 07:16:18 -05:00
|
|
|
package_pkg1() {
|
2012-11-16 18:31:43 -05:00
|
|
|
# options and directives that can be overridden
|
|
|
|
pkgdesc=""
|
|
|
|
arch=()
|
|
|
|
url=""
|
|
|
|
license=()
|
|
|
|
groups=()
|
|
|
|
depends=()
|
|
|
|
optdepends=()
|
|
|
|
provides=()
|
|
|
|
conflicts=()
|
|
|
|
replaces=()
|
|
|
|
backup=()
|
|
|
|
options=()
|
|
|
|
install=
|
|
|
|
changelog=
|
2009-01-16 07:16:18 -05:00
|
|
|
|
2013-03-10 15:56:12 -04:00
|
|
|
cd "$pkgbase-$pkgver"
|
2012-11-16 18:31:43 -05:00
|
|
|
make DESTDIR="$pkgdir/" install-pkg1
|
2009-01-16 07:16:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
package_pkg2() {
|
2012-11-16 18:31:43 -05:00
|
|
|
# options and directives overrides
|
|
|
|
pkgdesc=""
|
2009-01-16 07:16:18 -05:00
|
|
|
|
2013-03-10 15:56:12 -04:00
|
|
|
cd "$pkgbase-$pkgver"
|
2012-11-16 18:31:43 -05:00
|
|
|
make DESTDIR="$pkgdir/" install-pkg2
|
2009-01-16 07:16:18 -05:00
|
|
|
}
|