1
0
Fork 0
mirror of https://github.com/Phantop/solus-stuff synced 2024-11-01 04:14:58 +00:00
solus-stuff/addrepo

26 lines
469 B
Plaintext
Raw Normal View History

#!/bin/bash
mkdir $@
echo include ../Makefile.common > $@/Makefile
cat <<EOF > $@/package.yml
2020-06-23 03:22:30 +00:00
name :
version : 1
release : 1
source :
- git| : master
license : GPL-2.0-or-later
summary : Insert summary here
2021-01-10 18:45:09 +00:00
description: Insert description here
2020-06-23 03:22:30 +00:00
builddeps :
- pkgconfig(example)
2020-06-23 03:22:30 +00:00
setup : |
%configure
%cmake
%meson_configure
build : |
%make
%ninja_build
install : |
%make_install
%ninja_install
EOF