diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /bison | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'bison')
-rw-r--r-- | bison/.footprint | 35 | ||||
-rw-r--r-- | bison/.md5sum | 1 | ||||
-rw-r--r-- | bison/Pkgfile | 19 | ||||
-rw-r--r-- | bison/Pkgfile.old | 19 |
4 files changed, 74 insertions, 0 deletions
diff --git a/bison/.footprint b/bison/.footprint new file mode 100644 index 0000000..eceb1c3 --- /dev/null +++ b/bison/.footprint @@ -0,0 +1,35 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/bison +-rwxr-xr-x root/root usr/bin/yacc +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/liby.a +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/bison.1.gz +-rw-r--r-- root/root usr/man/man1/yacc.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/bison-i18n.m4 +drwxr-xr-x root/root usr/share/bison/ +-rw-r--r-- root/root usr/share/bison/bison.m4 +-rw-r--r-- root/root usr/share/bison/c++-skel.m4 +-rw-r--r-- root/root usr/share/bison/c++.m4 +-rw-r--r-- root/root usr/share/bison/c-skel.m4 +-rw-r--r-- root/root usr/share/bison/c.m4 +-rw-r--r-- root/root usr/share/bison/glr.c +-rw-r--r-- root/root usr/share/bison/glr.cc +-rw-r--r-- root/root usr/share/bison/java-skel.m4 +-rw-r--r-- root/root usr/share/bison/java.m4 +-rw-r--r-- root/root usr/share/bison/lalr1.cc +-rw-r--r-- root/root usr/share/bison/lalr1.java +-rw-r--r-- root/root usr/share/bison/location.cc +drwxr-xr-x root/root usr/share/bison/m4sugar/ +-rw-r--r-- root/root usr/share/bison/m4sugar/foreach.m4 +-rw-r--r-- root/root usr/share/bison/m4sugar/m4sugar.m4 +drwxr-xr-x root/root usr/share/bison/xslt/ +-rw-r--r-- root/root usr/share/bison/xslt/bison.xsl +-rw-r--r-- root/root usr/share/bison/xslt/xml2dot.xsl +-rw-r--r-- root/root usr/share/bison/xslt/xml2text.xsl +-rw-r--r-- root/root usr/share/bison/xslt/xml2xhtml.xsl +-rw-r--r-- root/root usr/share/bison/yacc.c diff --git a/bison/.md5sum b/bison/.md5sum new file mode 100644 index 0000000..650223b --- /dev/null +++ b/bison/.md5sum @@ -0,0 +1 @@ +c1d3ea81bc370dbd43b6f0b2cd21287e bison-2.4.3.tar.bz2 diff --git a/bison/Pkgfile b/bison/Pkgfile new file mode 100644 index 0000000..d9dfa4b --- /dev/null +++ b/bison/Pkgfile @@ -0,0 +1,19 @@ +description="The GNU Project parser generator" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://www.gnu.org/software/bison/" +depends=() + +name=bison +version=2.4.3 +release=1 +source=(ftp://ftp.gnu.org/gnu/bison/bison-2.4.3.tar.bz2) +build () +{ + cd $name-$version; + ./configure --prefix=/usr --mandir=/usr/man --disable-nls; + make; + make DESTDIR=$PKG install; + rm -r $PKG/usr/share/info; + rm $PKG/usr/share/bison/README +} diff --git a/bison/Pkgfile.old b/bison/Pkgfile.old new file mode 100644 index 0000000..fd3d900 --- /dev/null +++ b/bison/Pkgfile.old @@ -0,0 +1,19 @@ +# Description: The GNU Project parser generator +# URL: http://www.gnu.org/software/bison/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=bison +version=2.4.3 +release=1 +source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/man \ + --disable-nls + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/info + rm $PKG/usr/share/bison/README +} |