50 lines
879 B
Bash
50 lines
879 B
Bash
# This is an example PKGBUILD file. 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=myconf
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc=""
|
|
arch=('any')
|
|
url=""
|
|
license=('GPL')
|
|
groups=()
|
|
depends=( $( cat ./inst/pkgs/base.list ./inst/pkgs/runit.list ./inst/pkgs/wm.list ) )
|
|
makedepends=()
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=( install\/install.sh )
|
|
noextract=()
|
|
md5sums=()
|
|
validpgpkeys=()
|
|
|
|
prepare() {
|
|
echo "PREPARE"
|
|
}
|
|
|
|
build() {
|
|
echo "BUILD"
|
|
pwd -P
|
|
echo "before install.sh"
|
|
sh ./install/install.sh
|
|
}
|
|
|
|
check() {
|
|
echo "CHECK"
|
|
}
|
|
|
|
package() {
|
|
echo "PACKAGE"
|
|
}
|