Commit afd6596b authored by Seblu's avatar Seblu
Browse files

up kernel-rc and rwolf

start work on rpm



git-svn-id: https://seblu.net/s/archpkg@28 02741741-5192-46b8-8916-7152b19231d9
parent f5ced2f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu@seblu.net>
pkgname=kernel-rc
pkgver=2.6.37_rc2
pkgver=2.6.37_rc6
pkgrel=1
makedepends=('gcc')
arch=('x86_64')
+1 −1
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu@seblu.net>
pkgname=kernel-rwolf
pkgver=2.6.37_rc5
pkgver=2.6.37_rc7
pkgrel=1
makedepends=('gcc')
arch=('x86_64')
+0 −0

File moved.

+0 −0

File moved.

+14 −5
Original line number Diff line number Diff line
@@ -4,26 +4,35 @@
# Contributor: Chris Tusa <linisys@gmail.com>

pkgname=rpm
pkgver=5.2.1
pkgrel=3
pkgver=5.3.6
pkgrel=1
pkgdesc="The RedHat Package Manager"
arch=('i686' 'x86_64')
url="http://rpm5.org/"
license=('GPL')
groups=('system')
depends=('perl' 'python2' 'zlib' 'beecrypt' 'pcre' 'file')
makedepends=('cpio' 'gcc' 'make')
optdepends=('gnupg')
conflicts=("${pkgname}-org" 'rpmextract')
options=('!emptydirs')
source=("http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver%\.[0-9]}/${pkgname}-${pkgver}.tar.gz")
md5sums=('71f825ede4a2ddc191132ae017c9a6e4')
install=rpm.install
#source=("http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver%\.[0-9]}/${pkgname}-${pkgver}.tar.gz")
source=("rpm2cpio.sh" "$pkgname-$pkgver.src.rpm::http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver%\.[0-9]}/rpm-5.3.6-0.20101201.src.rpm")
md5sums=('1850f9872a4803f5165bfd5816274275'
         'd4c4967e945609eb6bf751f8d9320bf2')

build() {
  cd $pkgname-$pkgver
  pwd
  sh rpm2cpio.sh "$pkgname-$pkgver.src.rpm" | cpio -dim
  tar xf "$pkgname-$pkgver.tar.gz"
  cd "$pkgname-$pkgver"
  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --localstatedir=/var \
              --with-python=python2 \
              --without-selinux \
              --with-db=/usr/lib \
              --with-popt=/usr/lib \
              --with-pcre=/usr/lib \
              --with-bzip2=/usr/lib \
Loading