2013-04-12 14:22:03 +00:00
|
|
|
# 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: Olivier Medoc <o_medoc@yahoo.fr>
|
|
|
|
pkgname=qubes-vm-utils
|
|
|
|
pkgver=`cat version`
|
2013-11-28 13:53:26 +00:00
|
|
|
pkgrel=8
|
2013-04-12 14:22:03 +00:00
|
|
|
epoch=
|
|
|
|
pkgdesc="Common Linux files for Qubes VM."
|
|
|
|
arch=("x86_64")
|
|
|
|
url="http://qubes-os.org/"
|
|
|
|
license=('GPL')
|
|
|
|
groups=()
|
|
|
|
depends=(qubes-libvchan)
|
|
|
|
makedepends=(qubes-libvchan)
|
|
|
|
checkdepends=()
|
|
|
|
optdepends=()
|
|
|
|
provides=()
|
|
|
|
conflicts=()
|
|
|
|
replaces=()
|
|
|
|
backup=()
|
2013-11-28 13:53:26 +00:00
|
|
|
options=('staticlibs')
|
|
|
|
install=PKGBUILD-qubes-vm-utils.install
|
2013-04-12 14:22:03 +00:00
|
|
|
changelog=
|
|
|
|
|
|
|
|
source=()
|
|
|
|
|
|
|
|
noextract=()
|
|
|
|
md5sums=() #generate with 'makepkg -g'
|
|
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
2014-02-15 07:32:31 +00:00
|
|
|
for source in qrexec-lib udev qmemman core Makefile; do
|
2013-04-12 14:22:03 +00:00
|
|
|
(ln -s $srcdir/../$source $srcdir/$source)
|
|
|
|
done
|
|
|
|
|
|
|
|
make all
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
|
|
|
|
make install DESTDIR=$pkgdir
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|
|
|
|
|