sdb: create shlib symlinks.
This commit is contained in:
parent
73d87cd5b8
commit
14bcc8fc73
1 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'sdb'
|
# Template file for 'sdb'
|
||||||
pkgname=sdb
|
pkgname=sdb
|
||||||
version=0.6.4
|
version=0.6.4
|
||||||
revision=1
|
revision=2
|
||||||
short_desc="Simple key-value database with JSON support"
|
short_desc="Simple key-value database with JSON support"
|
||||||
maintainer="pancake <pancake@nopcode.org>"
|
maintainer="pancake <pancake@nopcode.org>"
|
||||||
license="LGPL-3"
|
license="LGPL-3"
|
||||||
|
@ -21,6 +21,12 @@ do_fetch() {
|
||||||
git clone -b ${version} git://github.com/radare/sdb.git sdb-${version}
|
git clone -b ${version} git://github.com/radare/sdb.git sdb-${version}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
# Create shlib symlinks.
|
||||||
|
ln -sfr ${DESTDIR}/usr/lib/libsdb.so.0.0.0 ${DESTDIR}/usr/lib/libsdb.so
|
||||||
|
ln -sfr ${DESTDIR}/usr/lib/libsdb.so.0.0.0 ${DESTDIR}/usr/lib/libsdb.so.0
|
||||||
|
}
|
||||||
|
|
||||||
sdb-devel_package() {
|
sdb-devel_package() {
|
||||||
depends="sdb>=${version}"
|
depends="sdb>=${version}"
|
||||||
short_desc+=" - development files"
|
short_desc+=" - development files"
|
||||||
|
|
Loading…
Reference in a new issue