17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
|
# Description: Contains several hash-map implementations, including for optimize space and speed
|
||
|
# URL: http://code.google.com/p/sparsehash
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
|
||
|
name=sparsehash
|
||
|
version=2.0.2
|
||
|
release=1
|
||
|
|
||
|
source=(http://sparsehash.googlecode.com/files/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|