blob: 0d3ca2dca749dd551a144f17b75fc481f504a74f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
# Maintainer: <aaron.l.france@gmail.com>
pkgname=lxc-wrapper
pkgver=1
pkgrel=1
epoch=
pkgdesc="An opinionated LXC wrapper"
arch=('i686' 'x86_64')
url="https://github.com/Ralt/lxc-wrapper.git"
license=('MIT')
groups=()
depends=('sbcl')
provides=('lxc-wrapper')
source=(git://github.com/Ralt/lxc-wrapper.git)
md5sums=('SKIP')
build() {
cd lxc-wrapper
sed -i 's/--compress/--asdf-tree . --compress/g' Makefile
ASDF_TREE=~/.quicklisp/ make
}
package() {
cd lxc-wrapper
mkdir -p $pkgdir/usr/bin/
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|