diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/kakasi/PKGBUILD | 2 | ||||
-rw-r--r-- | community/pinfo/PKGBUILD | 1 | ||||
-rw-r--r-- | community/prelink/PKGBUILD | 2 | ||||
-rw-r--r-- | community/pwsafe/PKGBUILD | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/community/kakasi/PKGBUILD b/community/kakasi/PKGBUILD index bc0a5c141..bf10796c1 100644 --- a/community/kakasi/PKGBUILD +++ b/community/kakasi/PKGBUILD @@ -16,7 +16,7 @@ options=(!libtool) build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr + ./configure --prefix=/usr --host=$CHOST --build=$CHOST make } diff --git a/community/pinfo/PKGBUILD b/community/pinfo/PKGBUILD index aa82fe665..94c87895a 100644 --- a/community/pinfo/PKGBUILD +++ b/community/pinfo/PKGBUILD @@ -10,6 +10,7 @@ arch=('i686' 'x86_64' 'mips64el') url="http://pinfo.alioth.debian.org/" license=('GPL') depends=('ncurses' 'readline') +makedepends=('git') source=(https://alioth.debian.org/frs/download.php/3351/$pkgname-$pkgver.tar.bz2) md5sums=('fe3d3da50371b1773dfe29bf870dbc5b') diff --git a/community/prelink/PKGBUILD b/community/prelink/PKGBUILD index 4b677caf1..fe4735011 100644 --- a/community/prelink/PKGBUILD +++ b/community/prelink/PKGBUILD @@ -24,7 +24,7 @@ build() { patch -Np0 -i ../arch-x86_64-dynamic_linker.patch - ./configure --prefix=/usr --mandir=/usr/share/man + ./configure --prefix=/usr --mandir=/usr/share/man --build=$CHOST make } diff --git a/community/pwsafe/PKGBUILD b/community/pwsafe/PKGBUILD index d95d4e563..74fbd3a1e 100644 --- a/community/pwsafe/PKGBUILD +++ b/community/pwsafe/PKGBUILD @@ -21,7 +21,7 @@ build() { # Patch from fedora, fixes FS#28339 patch -Np0 -i ../pwsafe-XChangeProperty.patch - ./configure --prefix=/usr --mandir=/usr/share/man + ./configure --prefix=/usr --mandir=/usr/share/man --build=$CHOST make } |