summaryrefslogtreecommitdiff
path: root/~mtjm/debootstrap/PKGBUILD
blob: 20ff27fcb8dba06620c10459a9fd6f6bf41841d2 (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
31
# Maintainer: Michał Masłowski <mtjm@mtjm.eu>

pkgname=debootstrap
_version=1.0.37
_ubuntu=0
_trisquel=5.5
_trisquelrev=1
pkgver=$_version.$_ubuntu.$_trisquel.$_trisquelrev
pkgrel=1
pkgdesc="Bootstrap a basic Trisquel system"
arch=('any')
url="http://packages.trisquel.info/source/brigantia/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")
source=("http://archive.trisquel.info/trisquel/pool/main/d/debootstrap/debootstrap_${_version}+${_trisquel}trisquel${_trisquelrev}.tar.gz")
sha256sums=('13ce77c840dc83ce84b52e850275b5ef6371bb72d068663933a2e1eefbd13e1e')

package() {
  cd "$srcdir/source"
  sed -i 's;MAKEDEV := /sbin/MAKEDEV;MAKEDEV := /usr/sbin/MAKEDEV -d .;' 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: