mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-11 04:50:27 +00:00
22 lines
526 B
Plaintext
Executable File
22 lines
526 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=2.0
|
|
release=1
|
|
source=(https://github.com/storaged-project/$name/releases/download/$version/$name-$version.tar.gz)
|
|
md5sum=(d47369556cd92aad4d8bc8ba10aebbed)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{locale,gtk-doc}
|
|
}
|
|
|