13 lines
203 B
Bash
13 lines
203 B
Bash
#!/bin/sh
|
|
pkg_ver="todo"
|
|
|
|
pkg_install(){
|
|
git clone https://github.com/madler/zlib
|
|
cd zlib
|
|
./configure
|
|
make
|
|
make install DESTDIR="${PREFIX}"
|
|
}
|
|
pkg_uninstall(){
|
|
make uninstall
|
|
}
|