12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- %global mypaint_data_version 1.0
- Name: mypaint-brushes
- Version: 1.3.0
- Release: 1%{?dist}
- Summary: Brushes to be used with the MyPaint library
- # According to Licenses.dep5 the files used for building/installing are GPLv2+
- # but the shipped brush files are CC0
- License: CC0
- URL: https://github.com/Jehan/mypaint-brushes
- Source0: https://github.com/Jehan/mypaint-brushes/archive/v%{version}.tar.gz#/mypaint-brushes-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: glib2-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- This package contains brush files for use with MyPaint and other programs.
- %package devel
- Summary: Files for developing with mypaint-brushes
- Requires: pkgconfig
- License: GPLv2+
- %description devel
- This package contains a pkgconfig file which makes it easier to develop
- programs using these brush files.
- %prep
- %setup -q
- %build
- ./autogen.sh
- %{configure}
- %{__make} %{?_smp_mflags}
- %install
- %{make_install}
- %files
- %doc AUTHORS NEWS README.md
- %doc COPYING Licenses.dep5 Licenses.md
- %dir %{_datadir}/mypaint-data
- %dir %{_datadir}/mypaint-data/%{mypaint_data_version}
- %{_datadir}/mypaint-data/%{mypaint_data_version}/brushes
- %files devel
- %doc COPYING Licenses.dep5 Licenses.md
- %{_datadir}/pkgconfig/mypaint-brushes-%{mypaint_data_version}.pc
- %changelog
- * Tue Oct 02 2018 Toshiaki Ara <ara_t@384.jp> 1.3.0-1
- - initial build for Vine Linux
- * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
- * Wed Apr 04 2018 Nils Philippsen <nils@tiptoe.de> - 1.3.0-1
- - initial release
|