cabextract, sloccount: new ports

This commit is contained in:
Antti Nykanen 2007-04-03 13:49:18 +03:00
parent 0143d29d7a
commit 97b0a23869
6 changed files with 87 additions and 0 deletions

6
cabextract/.footprint Normal file
View File

@ -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

1
cabextract/.md5sum Normal file
View File

@ -0,0 +1 @@
dc421a690648b503265c82ade84e143e cabextract-1.2.tar.gz

16
cabextract/Pkgfile Normal file
View File

@ -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
}

46
sloccount/.footprint Normal file
View File

@ -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/

1
sloccount/.md5sum Normal file
View File

@ -0,0 +1 @@
09abd6e2a016ebaf7552068a1dba1249 sloccount-2.26.tar.gz

17
sloccount/Pkgfile Normal file
View File

@ -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
}