mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-12 21:40:22 +00:00
19 lines
442 B
Plaintext
Executable File
19 lines
442 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.2
|
|
release=1
|
|
source=(http://github.com/storaged-project/$name/releases/download/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|