diff options
-rw-r--r-- | community/corkscrew/PKGBUILD | 2 | ||||
-rw-r--r-- | community/cpulimit/PKGBUILD | 6 | ||||
-rw-r--r-- | community/cuetools/PKGBUILD | 2 | ||||
-rw-r--r-- | community/curlftpfs/PKGBUILD | 2 | ||||
-rw-r--r-- | community/cutter/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/expect/PKGBUILD | 2 |
6 files changed, 12 insertions, 8 deletions
diff --git a/community/corkscrew/PKGBUILD b/community/corkscrew/PKGBUILD index 207f74aec..f7a9e0291 100644 --- a/community/corkscrew/PKGBUILD +++ b/community/corkscrew/PKGBUILD @@ -4,7 +4,7 @@ pkgname=corkscrew pkgver=2.0 -pkgrel=4 +pkgrel=4.1 pkgdesc="A tool for tunneling SSH through HTTP proxies" arch=('i686' 'x86_64' 'mips64el') url="http://www.agroman.net/corkscrew/" diff --git a/community/cpulimit/PKGBUILD b/community/cpulimit/PKGBUILD index 6cebcda00..bd8d6a085 100644 --- a/community/cpulimit/PKGBUILD +++ b/community/cpulimit/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cpulimit pkgver=1.1 -pkgrel=2 +pkgrel=2.1 pkgdesc="Limit cpu usage in %. Actualy sends SIGSTOP/SIGCONT" arch=('i686' 'x86_64' 'mips64el') url="http://cpulimit.sourceforge.net/" @@ -15,6 +15,8 @@ md5sums=('f4ff6d4bfaef1258e8f5cd2041e2e2a3') build() { cd $startdir/src/$pkgname-$pkgver - make + # The included trivial Makefile ignores CFLAGS and LDFLAGS, so + # running the compiler manually here. + ${CC:-gcc} ${LDFLAGS} ${CFLAGS} -o cpulimit cpulimit.c -lrt install -D -m0755 cpulimit $startdir/pkg/usr/bin/cpulimit } diff --git a/community/cuetools/PKGBUILD b/community/cuetools/PKGBUILD index e7c28db65..0b1d6dbb5 100644 --- a/community/cuetools/PKGBUILD +++ b/community/cuetools/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> pkgname=cuetools pkgver=1.3.1 -pkgrel=4 +pkgrel=4.1 pkgdesc="Set of utilities for working with cue files and toc files" arch=('i686' 'x86_64' 'mips64el') url="http://developer.berlios.de/projects/cuetools/" diff --git a/community/curlftpfs/PKGBUILD b/community/curlftpfs/PKGBUILD index 722cd9659..4e2d32f79 100644 --- a/community/curlftpfs/PKGBUILD +++ b/community/curlftpfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=curlftpfs pkgver=0.9.2 -pkgrel=3 +pkgrel=3.1 pkgdesc="A filesystem for acessing FTP hosts based on FUSE and libcurl." url="http://curlftpfs.sourceforge.net/" license=('GPL') diff --git a/community/cutter/PKGBUILD b/community/cutter/PKGBUILD index 010919ae2..ee3a8cfb1 100644 --- a/community/cutter/PKGBUILD +++ b/community/cutter/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cutter pkgver=1.03 -pkgrel=3 +pkgrel=3.1 pkgdesc="TCP/IP Connection cutting on Linux Firewalls and Routers" arch=('i686' 'x86_64' 'mips64el') url="http://www.lowth.com/cutter/" @@ -15,6 +15,8 @@ md5sums=('50093db9b64277643969ee75b83ebbd1') build() { cd $startdir/src/$pkgname-$pkgver - make || return 1 + # The included trivial Makefile ignores CFLAGS and LDFLAGS, so + # running the compiler manually here. + ${CC:-gcc} ${LDFLAGS} ${CFLAGS} -o cutter cutter.c install -D -m 0755 ./cutter $startdir/pkg/usr/bin/tcp-cutter } diff --git a/extra/expect/PKGBUILD b/extra/expect/PKGBUILD index 57e7fe5f7..29099e923 100644 --- a/extra/expect/PKGBUILD +++ b/extra/expect/PKGBUILD @@ -3,7 +3,7 @@ pkgname=expect pkgver=5.45 -pkgrel=1 +pkgrel=1.1 pkgdesc="A tool for automating interactive applications" arch=(i686 x86_64 'mips64el') url="http://www.nist.gov/el/msid/expect.cfm" |