diff --git a/cabextract/.footprint b/cabextract/.footprint new file mode 100644 index 000000000..52bf8ad64 --- /dev/null +++ b/cabextract/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cabextract +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/cabextract.1.gz diff --git a/cabextract/.md5sum b/cabextract/.md5sum new file mode 100644 index 000000000..bd28ea11e --- /dev/null +++ b/cabextract/.md5sum @@ -0,0 +1 @@ +dc421a690648b503265c82ade84e143e cabextract-1.2.tar.gz diff --git a/cabextract/Pkgfile b/cabextract/Pkgfile new file mode 100644 index 000000000..41fdebccb --- /dev/null +++ b/cabextract/Pkgfile @@ -0,0 +1,16 @@ +# Description: Microsoft Cabinet file decompressor +# URL: http://www.kyz.uklinux.net/cabextract.php +# Maintainer: Antti Nykänen, aon at iki dot fi +# Depends on: + +name=cabextract +version=1.2 +release=1 +source=(http://www.kyz.uklinux.net/downloads/cabextract-$version.tar.gz) + +build() { + cd cabextract-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} diff --git a/sloccount/.footprint b/sloccount/.footprint new file mode 100644 index 000000000..d65bef4b7 --- /dev/null +++ b/sloccount/.footprint @@ -0,0 +1,46 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ada_count +-rwxr-xr-x root/root usr/bin/asm_count +-rwxr-xr-x root/root usr/bin/awk_count +-rwxr-xr-x root/root usr/bin/break_filelist +-rwxr-xr-x root/root usr/bin/c_count +-rwxr-xr-x root/root usr/bin/cobol_count +-rwxr-xr-x root/root usr/bin/compute_all +-rwxr-xr-x root/root usr/bin/compute_sloc_lang +-rwxr-xr-x root/root usr/bin/count_extensions +-rwxr-xr-x root/root usr/bin/count_unknown_ext +-rwxr-xr-x root/root usr/bin/csh_count +-rwxr-xr-x root/root usr/bin/exp_count +-rwxr-xr-x root/root usr/bin/f90_count +-rwxr-xr-x root/root usr/bin/fortran_count +-rwxr-xr-x root/root usr/bin/generic_count +-rwxr-xr-x root/root usr/bin/get_sloc +-rwxr-xr-x root/root usr/bin/get_sloc_details +-rwxr-xr-x root/root usr/bin/haskell_count +-rwxr-xr-x root/root usr/bin/java_count +-rwxr-xr-x root/root usr/bin/jsp_count +-rwxr-xr-x root/root usr/bin/lex_count +-rwxr-xr-x root/root usr/bin/lexcount1 +-rwxr-xr-x root/root usr/bin/lisp_count +-rwxr-xr-x root/root usr/bin/make_filelists +-rwxr-xr-x root/root usr/bin/makefile_count +-rwxr-xr-x root/root usr/bin/ml_count +-rwxr-xr-x root/root usr/bin/modula3_count +-rwxr-xr-x root/root usr/bin/objc_count +-rwxr-xr-x root/root usr/bin/pascal_count +-rwxr-xr-x root/root usr/bin/perl_count +-rwxr-xr-x root/root usr/bin/php_count +-rwxr-xr-x root/root usr/bin/print_sum +-rwxr-xr-x root/root usr/bin/python_count +-rwxr-xr-x root/root usr/bin/ruby_count +-rwxr-xr-x root/root usr/bin/sed_count +-rwxr-xr-x root/root usr/bin/sh_count +-rwxr-xr-x root/root usr/bin/show_filecount +-rwxr-xr-x root/root usr/bin/sloccount +-rwxr-xr-x root/root usr/bin/sql_count +-rwxr-xr-x root/root usr/bin/tcl_count +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rwxr-xr-x root/root usr/man/man1/sloccount.1.gz +drwxr-xr-x root/root usr/share/ diff --git a/sloccount/.md5sum b/sloccount/.md5sum new file mode 100644 index 000000000..00c802295 --- /dev/null +++ b/sloccount/.md5sum @@ -0,0 +1 @@ +09abd6e2a016ebaf7552068a1dba1249 sloccount-2.26.tar.gz diff --git a/sloccount/Pkgfile b/sloccount/Pkgfile new file mode 100644 index 000000000..64b061700 --- /dev/null +++ b/sloccount/Pkgfile @@ -0,0 +1,17 @@ +# Description: a set of tools for counting physical Source Lines of Code +# URL: http://www.dwheeler.com/ +# Maintainer: Antti Nykänen, aon at iki dot fi +# Depends on: perl + +name=sloccount +version=2.26 +release=1 +source=(http://www.dwheeler.com/sloccount/sloccount-$version.tar.gz) + +build() { + cd sloccount-$version + make + install -d -m 0755 $PKG/usr/bin + make PREFIX=$PKG/usr MAN_DIR=$PKG/usr/man install + rm -rf $PKG/usr/share/doc +}