spacepaste

  1.  
  2. # Maintainer: M.Carreira <manuel@carreira.com.pt>
  3. pkgname=mindi-busybox
  4. pkgver=1.18.5
  5. pkgrel=3
  6. pkgdesc="This package provides a busybox version suited for Mindi"
  7. arch=('i686' 'x86_64')
  8. url="http://www.mondorescue.org/"
  9. license=('GPL')
  10. depends=(gcc)
  11. changelog=ChangeLog
  12. #There are two official mirrors. If one is not working try the other. The muskokamug.org seems faster.
  13. source=(ftp://ftp.mondorescue.org/src/$pkgname-$pkgver.tar.gz shell_common.patch)
  14. #source=(http://mondorescue.muskokamug.org/src/$pkgname-$pkgver.tar.gz)
  15. md5sums=('c4203f465a7c491538f5156f0d95ba88' '5d9319df3eeab32fefa40b2724d27568')
  16. build() {
  17. cd "$srcdir/$pkgname-$pkgver"
  18. patch -p1 < $srcdir/shell_common.patch
  19. make oldconfig
  20. make busybox
  21. make CONFIG_PREFIX=$pkgdir/usr/lib/mindi/rootfs install
  22. }
  23.