diff --git a/Makefile.builder b/Makefile.builder index 7809cf3..e98a4f9 100644 --- a/Makefile.builder +++ b/Makefile.builder @@ -1 +1,2 @@ RPM_SPEC_FILES := rpm_spec/qubes-utils.spec +ARCH_BUILD_DIRS := archlinux diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD new file mode 100644 index 0000000..1575567 --- /dev/null +++ b/archlinux/PKGBUILD @@ -0,0 +1,51 @@ +# 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 +pkgname=qubes-vm-utils +pkgver=`cat version` +pkgrel=4 +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=() +options=() +install= +changelog= + +source=() + +noextract=() +md5sums=() #generate with 'makepkg -g' + + +build() { + +for source in qrexec-lib udev Makefile; do + (ln -s $srcdir/../$source $srcdir/$source) +done + +make all + +} + +package() { + +make install DESTDIR=$pkgdir + +} + +# vim:set ts=2 sw=2 et: + diff --git a/pkgs/.gitignore b/pkgs/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/pkgs/.gitignore @@ -0,0 +1 @@ +*