summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-10-09 18:49:38 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-10-09 18:49:38 -0200
commit533189fa3e72bb81b1904365f40d8fbd4ef78690 (patch)
tree343a30cdca89e821666d5d03571c0b9cd84ed709 /pcr
parentf9b04e085d28f8f03ef1792f03ff4883aac9169d (diff)
debootstrap: changing from debian to gnewsense source code
Diffstat (limited to 'pcr')
-rw-r--r--pcr/debootstrap/PKGBUILD21
-rw-r--r--pcr/debootstrap/debootstrap.install4
2 files changed, 14 insertions, 11 deletions
diff --git a/pcr/debootstrap/PKGBUILD b/pcr/debootstrap/PKGBUILD
index 04ffd6fd4..6fbb73cae 100644
--- a/pcr/debootstrap/PKGBUILD
+++ b/pcr/debootstrap/PKGBUILD
@@ -1,18 +1,19 @@
-# Maintainer: Jan Dolinar <dolik.rce@gmail.com>
-# Contributor: Abakus <java5 at arcor dot de>
+# $Id$
+# Maintainer: André Silva <emulatorman@lavabit.com>
+
pkgname=debootstrap
-pkgver=1.0.42
-pkgrel=2
-pkgdesc="A tool used to create a Debian base system from scratch, without requiring the availability of dpkg or apt"
+pkgver=1.0.26
+pkgrel=1
+pkgdesc="A tool used to create a gNewSense base system from scratch, without requiring the availability of dpkg or apt"
arch=('any')
license=('GPL')
-url="http://packages.qa.debian.org/d/debootstrap.html"
+url="http://www.gnewsense.org"
depends=('bash' 'wget')
-optdepends=( 'debian-archive-keyring: checking Debian release signatures'
- 'gnupg1: checking Debian release signatures' )
-source=("http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}_all.deb")
+optdepends=( 'gnewsense-archive-keyring: checking gNewSense release signatures'
+ 'gnupg1: checking gNewSense release signatures' )
+source=("http://archive.gnewsense.org/gnewsense-three/gnewsense/pool/overlays/parkes/kgoetz/${pkgname}/${pkgname}_${pkgver}+squeeze1+gnewsense1_all.deb")
install="debootstrap.install"
-md5sums=('9bf9583ae731210d582d65aa276d48aa')
+md5sums=('2049317eac54c0fac6c3201a90fadc18')
build(){
tar -xzf "${srcdir}/data.tar.gz" -C "${pkgdir}/"
diff --git a/pcr/debootstrap/debootstrap.install b/pcr/debootstrap/debootstrap.install
index ebd23e0dd..85a99f160 100644
--- a/pcr/debootstrap/debootstrap.install
+++ b/pcr/debootstrap/debootstrap.install
@@ -1,8 +1,10 @@
post_install() {
if [ "$(uname -m)" = "x86_64" ]; then
darch="amd64"
- else
+ elif [ "$(uname -m)" = "i386" ]; then
darch="i386"
+ else
+ darch="mips64el"
fi
echo "$darch" > /usr/share/debootstrap/arch
}