diff options
Diffstat (limited to 'manualPorts')
-rw-r--r-- | manualPorts/sox/.footprint | 27 | ||||
-rw-r--r-- | manualPorts/sox/.md5sum | 1 | ||||
-rw-r--r-- | manualPorts/sox/.signature | 5 | ||||
-rw-r--r-- | manualPorts/sox/Pkgfile | 22 | ||||
-rwxr-xr-x | manualPorts/sox/lastVersion.sh | 8 |
5 files changed, 0 insertions, 63 deletions
diff --git a/manualPorts/sox/.footprint b/manualPorts/sox/.footprint deleted file mode 100644 index 482182c..0000000 --- a/manualPorts/sox/.footprint +++ /dev/null @@ -1,27 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/play -> sox -lrwxrwxrwx root/root usr/bin/rec -> sox --rwxr-xr-x root/root usr/bin/sox -lrwxrwxrwx root/root usr/bin/soxi -> sox -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/sox.h -drwxr-xr-x root/root usr/lib/ --rw-r--r-- root/root usr/lib/libsox.a --rwxr-xr-x root/root usr/lib/libsox.la -lrwxrwxrwx root/root usr/lib/libsox.so -> libsox.so.3.0.0 -lrwxrwxrwx root/root usr/lib/libsox.so.3 -> libsox.so.3.0.0 --rwxr-xr-x root/root usr/lib/libsox.so.3.0.0 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/sox.pc -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ -lrwxrwxrwx root/root usr/share/man/man1/play.1.gz -> sox.1.gz -lrwxrwxrwx root/root usr/share/man/man1/rec.1.gz -> sox.1.gz --rw-r--r-- root/root usr/share/man/man1/sox.1.gz --rw-r--r-- root/root usr/share/man/man1/soxi.1.gz -drwxr-xr-x root/root usr/share/man/man3/ --rw-r--r-- root/root usr/share/man/man3/libsox.3.gz -drwxr-xr-x root/root usr/share/man/man7/ --rw-r--r-- root/root usr/share/man/man7/soxformat.7.gz diff --git a/manualPorts/sox/.md5sum b/manualPorts/sox/.md5sum deleted file mode 100644 index e0f344f..0000000 --- a/manualPorts/sox/.md5sum +++ /dev/null @@ -1 +0,0 @@ -ba804bb1ce5c71dd484a102a5b27d0dd sox-14.4.2.tar.bz2 diff --git a/manualPorts/sox/.signature b/manualPorts/sox/.signature deleted file mode 100644 index e6e0b3d..0000000 --- a/manualPorts/sox/.signature +++ /dev/null @@ -1,5 +0,0 @@ -untrusted comment: verify with /etc/ports/deepthought.pub -RWQxCptPusLGGuu1cVKvQXxubEY6CAifx2MVZL3yhN8sk/xuZ0PCiLsDDiezN+/yVp0xBO9mUwp15griV4Q8Neh4XbgAEyMCyg8= -SHA256 (Pkgfile) = 4ef6277eff7ea20fcaaad4f3524fc561b6ada235ac5fe5f0266f006a8c3a06cc -SHA256 (.footprint) = 1590bcfcc2ffa6f67dfdeea547c1594473c9bd4dface43b3d91c2af5259f4dde -SHA256 (sox-14.4.2.tar.bz2) = 81a6956d4330e75b5827316e44ae381e6f1e8928003c6aa45896da9041ea149c diff --git a/manualPorts/sox/Pkgfile b/manualPorts/sox/Pkgfile deleted file mode 100644 index 2533f82..0000000 --- a/manualPorts/sox/Pkgfile +++ /dev/null @@ -1,22 +0,0 @@ -# Description: Audio processing on the console, aka "SOund eXchange" -# URL: http://sox.sourceforge.net/ -# Maintainer: Erich Eckner, crux at eckner dot net -# Depends on: libmad - -name=sox -version=14.4.2 -release=2 -source=(http://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.bz2) - -build() { - cd $name-$version - - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --with-lame \ - --with-mad - - make - make DESTDIR=$PKG install -} diff --git a/manualPorts/sox/lastVersion.sh b/manualPorts/sox/lastVersion.sh deleted file mode 100755 index 6109135..0000000 --- a/manualPorts/sox/lastVersion.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -curl "https://sourceforge.net/projects/sox/files/sox/" 2> /dev/null | \ - tr "\"" "\n" | \ - grep "^/projects/sox/files/sox/.*/\$" | \ - sed "s|^/projects/sox/files/sox/\(.*\)/\$|\1|" | \ - sort -V | \ - tail -n1 |