updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / gnu2busybox-diffutils / PKGBUILD
blob1090cfc635226a598600d1225aa66846952da2f8
1 #Maintainer: Jens Staal <staal1978@gmail.com>
3 pkgname="gnu2busybox-diffutils"
4 pkgver="1"
5 pkgrel=1
6 pkgdesc="Replacing the GNU diffutils with the corresponding commands from Busybox"
7 arch=('any')
8 url="http://busybox.net/"
9 license=('GPLv2')
10 depends=('busybox')
11 # makedepends=('txt2man') #see below...
12 provides=('diffutils')
13 conflicts=('diffutils')
14 source=('diffutils.ls')
15 md5sums=('5e36e1b9c2fd1dd553aba91fca653a67')
17 _usrbin=($srcdir/diffutils.ls)
20 build() {
21   
22   msg "creating package directories"
23   mkdir "$pkgdir/usr"
24   mkdir "$pkgdir/usr/bin"
25   mkdir "$pkgdir/usr/share"
26   mkdir "$pkgdir/usr/share/man"
27   mkdir "$pkgdir/usr/share/man/man1"
29   msg "creating symlinks for /usr/bin"
31     for i in $(cat $_usrbin)
32       do
33       ln -s /bin/busybox $pkgdir/usr/bin/$i
34     done
36   cd $pkgdir/usr/bin
37   ln -s diff diff3
38   ln -s diff sdiff
40   msg "setting up manpage entries"
42 #Temporarily commented out since I do not get how I should make it work...
43 #Hardly essential at this stage anyway...
44 # ideas/feedback welcome
46 #  _tmp=()
47 #  for i in $(cat $_usrbin)
48 #      /bin/busybox $i --help > $_tmp
49 #      txt2man -t $i -s 1 -v "Busybox symlink" $_tmp > $pkgdir/usr/share/man/man1/$i.1
50 #  done