|
|
@ -4,7 +4,7 @@
|
|
|
|
_pkgbasename=ncurses
|
|
|
|
_pkgbasename=ncurses
|
|
|
|
pkgname=lib32-${_pkgbasename}
|
|
|
|
pkgname=lib32-${_pkgbasename}
|
|
|
|
pkgver=6.0
|
|
|
|
pkgver=6.0
|
|
|
|
pkgrel=1
|
|
|
|
pkgrel=2
|
|
|
|
pkgdesc="System V Release 4.0 curses emulation library (32-bit)"
|
|
|
|
pkgdesc="System V Release 4.0 curses emulation library (32-bit)"
|
|
|
|
arch=('x86_64')
|
|
|
|
arch=('x86_64')
|
|
|
|
url="http://www.gnu.org/software/ncurses/"
|
|
|
|
url="http://www.gnu.org/software/ncurses/"
|
|
|
@ -17,31 +17,21 @@ md5sums=('ee13d052e1ead260d7c28071f46eefb1'
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # Thomas Dickey
|
|
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
build() {
|
|
|
|
|
|
|
|
cd ${_pkgbasename}-${pkgver}
|
|
|
|
|
|
|
|
|
|
|
|
export CC="gcc -m32"
|
|
|
|
export CC="gcc -m32"
|
|
|
|
export CXX="g++ -m32"
|
|
|
|
export CXX="g++ -m32"
|
|
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
|
|
|
|
|
|
|
|
cd ${srcdir}/
|
|
|
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
|
|
|
mkdir ncurses{,w}-build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cd ${srcdir}/ncursesw-build
|
|
|
|
|
|
|
|
../${_pkgbasename}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \
|
|
|
|
|
|
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
|
|
--with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32 \
|
|
|
|
--with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32 \
|
|
|
|
--enable-ext-colors --enable-ext-mouse
|
|
|
|
--enable-ext-colors --enable-ext-mouse
|
|
|
|
make
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
|
|
# libraries for external binary support
|
|
|
|
|
|
|
|
cd ${srcdir}/ncurses-build
|
|
|
|
|
|
|
|
# [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long"
|
|
|
|
|
|
|
|
../${_pkgbasename}-${pkgver}/configure --prefix=/usr \
|
|
|
|
|
|
|
|
--with-shared --with-normal --without-debug --without-ada \
|
|
|
|
|
|
|
|
--with-install-prefix=${pkgdir} $CONFIGFLAG --libdir=/usr/lib32
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
package() {
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/ncursesw-build
|
|
|
|
cd ${_pkgbasename}-${pkgver}
|
|
|
|
make install
|
|
|
|
make install
|
|
|
|
|
|
|
|
|
|
|
|
install -dm755 ${pkgdir}/usr/lib32
|
|
|
|
install -dm755 ${pkgdir}/usr/lib32
|
|
|
@ -61,13 +51,6 @@ package() {
|
|
|
|
ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a
|
|
|
|
ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a
|
|
|
|
ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a
|
|
|
|
ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a
|
|
|
|
|
|
|
|
|
|
|
|
# non-widec compatibility libraries
|
|
|
|
|
|
|
|
cd ${srcdir}/ncurses-build
|
|
|
|
|
|
|
|
for lib in ncurses form panel menu; do
|
|
|
|
|
|
|
|
install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.${pkgver}
|
|
|
|
|
|
|
|
ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.5
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rm -rf "${pkgdir}"/usr/{include,share,bin}
|
|
|
|
rm -rf "${pkgdir}"/usr/{include,share,bin}
|
|
|
|
mkdir -p "$pkgdir/usr/share/licenses"
|
|
|
|
mkdir -p "$pkgdir/usr/share/licenses"
|
|
|
|
ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
|
|
|
|
ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
|
|
|
|