mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 00:44:48 +00:00
20 lines
484 B
Plaintext
Executable File
20 lines
484 B
Plaintext
Executable File
# description : Library facilitates the common operations with sizes in bytes
|
|
# homepage : https://github.com/rhinstaller/libbytesize
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : pcre2
|
|
|
|
name=libbytesize
|
|
version=1.3
|
|
release=1
|
|
source=(http://github.com/storaged-project/$name/releases/download/$version/$name-$version.tar.gz)
|
|
md5sum=(dd6dcd764e94833ca7ecae4c4893e52b)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|