mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-04 16:45:07 -05:00
fb0f880f0a
Most of the redundant "cd $srcdir" in the prototypes were removed in commit
5f80d7af
. Fix the rest.
Signed-off-by: Allan McRae <allan@archlinux.org>
79 lines
1.3 KiB
Protocol Buffer
79 lines
1.3 KiB
Protocol Buffer
# 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'.
|
|
|
|
# Maintainer: Your Name <youremail@domain.com>
|
|
pkgname=('pkg1' 'pkg2')
|
|
pkgbase=BASE
|
|
pkgver=VERSION
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc=""
|
|
arch=()
|
|
url=""
|
|
license=('GPL')
|
|
groups=()
|
|
depends=()
|
|
makedepends=()
|
|
checkdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("$pkgbase-$pkgver.tar.gz"
|
|
"$pkgname-$pkgver.patch")
|
|
noextract=()
|
|
md5sums=() #generate with 'makepkg -g'
|
|
|
|
prepare() {
|
|
cd "$pkgname-$pkgver"
|
|
patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgbase-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname-$pkgver"
|
|
make -k check
|
|
}
|
|
|
|
package_pkg1() {
|
|
# options and directives that can be overridden
|
|
pkgver=
|
|
pkgrel=
|
|
epoch=
|
|
pkgdesc=""
|
|
arch=()
|
|
url=""
|
|
license=()
|
|
groups=()
|
|
depends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
|
|
cd "$pkgbase-$pkgver"
|
|
make DESTDIR="$pkgdir/" install-pkg1
|
|
}
|
|
|
|
package_pkg2() {
|
|
# options and directives overrides
|
|
pkgdesc=""
|
|
|
|
cd "$pkgbase-$pkgver"
|
|
make DESTDIR="$pkgdir/" install-pkg2
|
|
}
|