mirror of
https://github.com/outbackdingo/scratchpkg.git
synced 2026-02-01 20:18:24 +00:00
47 lines
1.1 KiB
Bash
Executable File
47 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# scratchpkg
|
|
#
|
|
# Copyright (c) 2018 by Emmett1 (emmett1.2miligrams@gmail.com)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
if [ -d "$1" ]; then
|
|
echo "ERROR: Directory '$1' already exist!"
|
|
exit 1
|
|
else
|
|
mkdir "$1"
|
|
echo "# description :
|
|
# homepage :
|
|
# depends :
|
|
|
|
name=$1
|
|
version=
|
|
release=1
|
|
noextract=\"\"
|
|
backup=\"\"
|
|
source=\"\"
|
|
|
|
build() {
|
|
cd \$name-\$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=\$PKG install
|
|
}" > "$1"/spkgbuild
|
|
echo "Template port have created for '$1'."
|
|
fi
|
|
|
|
exit 0
|