51 lines
984 B
Bash
51 lines
984 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: Christoffer Müller Madsen <christoffer.m.madsen@thedevcave.net>
|
|
pkgname=pcs
|
|
pkgver=8.4_a6le
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc=""
|
|
arch=("x86_64")
|
|
url="http://www.scheme.com"
|
|
license=('unkown')
|
|
groups=()
|
|
depends=()
|
|
makedepends=()
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("http://www.scheme.com/download/${pkgname}v${pkgver//_/-}.tar.gz")
|
|
noextract=()
|
|
md5sums=("fc6729407dc9c4eca7903b890e26ae29")
|
|
validpgpkeys=()
|
|
|
|
prepare() {
|
|
cd "csv8.4"
|
|
}
|
|
|
|
build() {
|
|
cd "csv8.4/custom"
|
|
./configure --installprefix=/usr --temproot="$pkgdir/"
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "csv8.4/custom"
|
|
#TODO: check if build succeded
|
|
}
|
|
|
|
package() {
|
|
cd "csv8.4/custom"
|
|
make install
|
|
}
|