blob: 04de5e9a4c6bf376d6d79e55c9a35b9066108531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
usage:
@echo 'Run "make install" to install into your home directory.'
@echo 'Run "make install_tweaks" to install tweak files, too.'
install:
mkdir -p $$HOME/bin
install -m 755 bin/makepkgbuild bin/makepkgmeta bin/genpkg \
bin/tweakmeta $$HOME/bin
mkdir -p $$HOME/lib/genpkg/
cp -R lib/* $$HOME/lib/genpkg/
mkdir -p $$HOME/pkg/dest
install_tweaks:
-mkdir $$HOME/pkg
cp -R tweaks $$HOME/pkg/
|