Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
741 B

8 years ago
import 'vcs/git'
name=uMatrix
version=1.0.0
8 years ago
update_url="https://github.com/gorhill/$name/releases"
update_names="/archive/$version.tar.gz"
dlextract "https://github.com/gorhill/$name/archive/$version/$name-$version.tar.gz" \
'04761e1f6e41b41a67a6a64cb434084c'
8 years ago
( name=uAssets
vcs_git -V "https://github.com/uBlockOrigin/uAssets"
)
header_end
cd "$name-$version"
# Update the assets, as that's something not done in uMatrix for some reason
rm -f assets/checksums.txt
cp -a ../uAssets/thirdparties assets
tools/make-firefox.sh all
8 years ago
install -Dm644 "dist/build/$name.firefox.xpi" "$dir_install/$dir_prefix/$dir_libdir/palemoon/browser/extensions/$name@raymondhill.net.xpi"
8 years ago
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: