mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
||
|
# Contributor: Robert Knauer <robert@privatdemail.net>
|
||
|
# Contributor: Rodrigo Grumiche Silva <grumiche at integrityit dot com dot br>
|
||
|
# Contributor: nozog
|
||
|
# Contributor: davidhjelm
|
||
|
# Contributor: Ray Kohler <ataraxia937 at gmail dot com>
|
||
|
# Contributor: Nathan Owe < ndowens04 at gmail dot com>
|
||
|
|
||
|
pkgname=poco
|
||
|
pkgver=1.4.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="C++ class libraries for network-centric, portable applications, complete edition"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.pocoproject.org/"
|
||
|
license=('custom:boost')
|
||
|
depends=('unixodbc' 'libmysqlclient' 'openssl')
|
||
|
makedepends=('gcc' 'make' 'unixodbc' 'libmysqlclient' 'openssl' 'chrpath')
|
||
|
source=(
|
||
|
|
||
|
"${pkgname}-${pkgver}-all.tar.gz"::"https://sourceforge.net/projects/${pkgname}/files/sources/${pkgname}-${pkgver}/${pkgname}-${pkgver}-all.tar.gz/download"
|
||
|
)
|
||
|
sha256sums=(
|
||
|
'cf8229310f047e731cc6273a8df55e03b76f0ed7d5b5d251f99a0f80f6c2c763'
|
||
|
)
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}-all"
|
||
|
./configure --prefix=/usr --no-samples --no-tests
|
||
|
make ODBCLIBDIR="/usr/lib"
|
||
|
}
|
||
|
|
||
|
package()
|
||
|
{
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}-all"
|
||
|
make ODBCLIBDIR="/usr/lib" DESTDIR="${pkgdir}" install
|
||
|
install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||
|
# remove rpath information from binaries
|
||
|
chrpath -d "${pkgdir}/usr/bin/cpspc"
|
||
|
chrpath -d "${pkgdir}/usr/bin/cpspcd"
|
||
|
chrpath -d "${pkgdir}/usr/bin/f2cpspd"
|
||
|
chrpath -d "${pkgdir}/usr/bin/f2cpsp"
|
||
|
# remove debugging libraries
|
||
|
rm "${pkgdir}/usr/lib/libPoco"*"d.so"*
|
||
|
}
|