repo/libc/PACKAGE

13 lines
197 B
Text
Raw Permalink Normal View History

#!/bin/sh
pkg_ver="todo"
pkg_install(){
git clone https://sourceware.org/git/glibc.git
cd glibc
make
make install DESTDIR="${PREFIX}"
}
pkg_uninstall(){
make uninstall
}