19 lines
572 B
Plaintext
19 lines
572 B
Plaintext
# Tanım: Dağıtık yazılım ayarlama,sürüm takip yönetimi uygulaması
|
||
# Url: https://www.fossil-scm.org
|
||
# Paketçi: milisarge
|
||
# Gerekler: sqlite
|
||
|
||
isim=fossil
|
||
surum=2.3
|
||
devir=1
|
||
kaynak=(https://www.fossil-scm.org/index.html/uv/fossil-src-$surum.tar.gz)
|
||
|
||
derle() {
|
||
cd $isim-$surum
|
||
./configure --prefix=/usr --json --disable-internal-sqlite
|
||
make
|
||
install -Dm755 fossil "$PKG"/usr/bin/fossil
|
||
install -Dm644 tools/fossil-autocomplete.bash "$PKG"/usr/share/bash-completion/completions/fossil
|
||
install -Dm644 COPYRIGHT-BSD2.txt "$PKG"/usr/share/licenses/$isim/LICENSE
|
||
}
|