You are not logged in.
Pages: 1
Hey,
i just found out that the mysql++ PKGBUILD has not been updated for months and has no maintainer, so i updated the PKGBUILD.
Since this is my first PKGBUILD i would like to have it checked before submitting anything wrong to the database.
# Maintainer: Thomas Kinnen <nihathrael@users.sourceforge.net>
# Contributor: Frank Oosterhuis <frank@scriptzone.nl>
pkgname=mysqlpp
pkgver=2.3.2
pkgrel=2
pkgdesc="MySQL++ is a C++ wrapper for MySQL's C API."
url="http://tangentsoft.net/mysql++/"
license=('GPL')
depends=(mysql)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://tangentsoft.net/mysql++/releases/mysql++-$pkgver.tar.gz)
md5sums=('e3b839b17872f1e0f2ddbf7cf407b395')
arch=(i686 x86_64)
build() {
cd $startdir/src/mysql++-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
Updates:
- Version change from 2.2.3 to 2.3.2
- Added x86_64 to the arch() line.
- minor syntax changes.
Critics welcome!
Last edited by Nihathrael (2007-10-25 19:29:54)
Unknown Horizons - Open source real-time strategy game with the comfy Anno 1602 feeling!
Offline
Pages: 1