mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-09 12:00:26 +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=1.4
|
|
release=1
|
|
source=(https://github.com/storaged-project/$name/releases/download/$version/$name-$version.tar.gz)
|
|
md5sum=(aa9bd5a04546873714da2adbaaa9f283)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/{locale,gtk-doc}
|
|
}
|
|
|