diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-01-07 15:08:59 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-01-07 15:08:59 +0100 |
commit | 74d2f6ecbd25e398d8e618b1ba3b8b1df8baefe5 (patch) | |
tree | c7ddc46dc8b4d648a7d34903ab0832d9fce63c09 /community | |
parent | d5d6c758f4c060d2f5a26435fd3a3e8a660d5af8 (diff) |
Rebuilds for lib32.
Manually run the compiler instead of using trivial Makefiles, to
respect user's CFLAGS.
Diffstat (limited to 'community')
-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 |
5 files changed, 11 insertions, 7 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 } |