blob: 8da48c3a0f6720d951d25597b241537cdaa1152c (
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
|
# Maintainer: Michał Masłowski <mtjm@mtjm.eu>
pkgname=debootstrap
_version=1.0.29
_ubuntu=1
_trisquel=5.0
_trisquelrev=2
pkgver=$_version.$_ubuntu.$_trisquel.$_trisquelrev
pkgrel=1
pkgdesc="Bootstrap a basic Trisquel system"
arch=('any')
url="http://packages.trisquel.info/source/dagda/debootstrap"
license=('custom')
depends=('sh')
makedepends=('makedev')
backup=()
source=("http://archive.trisquel.info/trisquel/pool/main/d/debootstrap/debootstrap_${_version}ubuntu${_ubuntu}+${_trisquel}trisquel${_trisquelrev}.tar.gz")
md5sums=('22f8ddf5e11153c6fae8309a579e3376')
package() {
cd "$srcdir/source"
sed -i 's;MAKEDEV := /sbin/MAKEDEV;MAKEDEV := /usr/sbin/MAKEDEV;' Makefile # fix Arch compatibility
sed -i 's; consoleonly;;' Makefile # doesn't work, not sure why
make all # not in build, since it needs root priviledges
make DESTDIR="$pkgdir/" install
install -m755 -d "${pkgdir}/usr/share/licenses/$pkgname"
install -m644 debian/copyright "${pkgdir}/usr/share/licenses/$pkgname"
}
# vim:set ts=2 sw=2 et:
|