summaryrefslogtreecommitdiff
path: root/community/busybox/PKGBUILD
blob: 17b0e32bd5c56cb37c1847a22d0727d06c7a68ed (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
# $Id: PKGBUILD 38368 2011-01-26 10:25:20Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jens Pranaitis <jens@jenux.homelinux.org>

pkgname=busybox
pkgver=1.18.2
pkgrel=1
pkgdesc="Utilities for rescue and embedded systems"
arch=("i686" "x86_64")
url="http://busybox.net"
license=('GPL')
makedepends=("make" "gcc" "sed" "ncurses")
options=()
source=($url/downloads/$pkgname-$pkgver.tar.bz2
	config)
md5sums=('69a82091e5710b72db5ce0e14e7c0cd7'
         '10356174db56da484eb8c43c90aee7b7')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  cp $srcdir/config .config
  # if you want to run menuconfig uncomment the following line:
  # make menuconfig ; return 1
  make
  mkdir $pkgdir/bin
  install -m755 busybox $pkgdir/bin/
}