23 lines
624 B
Plaintext
23 lines
624 B
Plaintext
|
# Template file for 'sdb'
|
||
|
pkgname=sdb
|
||
|
version="$(date -u +%Y%m%d)"
|
||
|
revision=1
|
||
|
build_style=gnu-makefile
|
||
|
short_desc="A Simple database"
|
||
|
maintainer="pancake <pancake@youterm.com>"
|
||
|
license="GPL-3"
|
||
|
homepage="https://github.com/radare/sdb"
|
||
|
long_desc="
|
||
|
sdb is a simple key/value database with disk storage. mcsdbd is a memcache
|
||
|
server with disk storage based on sdb. sdbtypes is a vala library that
|
||
|
implements several data structures on top of an sdb or memcache instance."
|
||
|
|
||
|
nofetch=yes
|
||
|
noextract=yes
|
||
|
makedepends="git vala-devel"
|
||
|
subpackages="sdb-devel"
|
||
|
|
||
|
do_fetch() {
|
||
|
git clone git://github.com/radare/sdb.git sdb-${version}
|
||
|
}
|