19 lines
588 B
Plaintext
19 lines
588 B
Plaintext
|
# Description: Dağıtık yazılım ayarlama,sürüm takip yönetimi uygulaması
|
|||
|
# Url: https://www.fossil-scm.org
|
|||
|
# Packager: milisarge
|
|||
|
# Depends on: sqlite
|
|||
|
|
|||
|
name=fossil
|
|||
|
version=2.3
|
|||
|
release=1
|
|||
|
source=(https://www.fossil-scm.org/index.html/uv/fossil-src-$version.tar.gz)
|
|||
|
|
|||
|
build () {
|
|||
|
cd $name-$version
|
|||
|
./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/$name/LICENSE
|
|||
|
}
|