diff options
author | B Stack <bgstack15@gmail.com> | 2021-01-20 08:23:42 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2021-01-20 08:23:42 -0500 |
commit | 8ab46b39d8c1d4b1a63109017971b6053f24b656 (patch) | |
tree | 14401adbf191910554ae29e54bfef403b22ca58b | |
parent | add dpkg recipe (diff) | |
download | dragon-8ab46b39d8c1d4b1a63109017971b6053f24b656.tar.gz dragon-8ab46b39d8c1d4b1a63109017971b6053f24b656.tar.bz2 dragon-8ab46b39d8c1d4b1a63109017971b6053f24b656.zip |
add rpm spec
-rw-r--r-- | dragon-drag-and-drop.spec | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/dragon-drag-and-drop.spec b/dragon-drag-and-drop.spec new file mode 100644 index 0000000..fbb6053 --- /dev/null +++ b/dragon-drag-and-drop.spec @@ -0,0 +1,63 @@ +# File: dragon-drag-and-drop.spec +# Location: https://gitlab.com/bgstack15/dragon.git +# Author: bgstack15 +# Startdate: 2021-01-20 +# Title: Rpm spec for dragon-drag-and-drop package +# Purpose: Provide build instructions for rpm for package +# History: +# Usage: +# Reference: +# bgstack15 package +# https://gitlab.com/jeremieglbd/xdragon/-/blob/master/xdragon.spec +# Improve: +# Documentation: +# Dependencies: + +%define sname dragon +%define devtty "/dev/null" +%define debug_package %{nil} +%global _python_bytecompile_errors_terminate_build 0 + +Summary: simple drag-and-drop source/sink for X or Wayland +Name: dragon-drag-and-drop +Version: 1.1.2 +Release: 1 +License: GPL-3.0 +Source0: https://gitlab.com/bgstack15/%{sname}/-/archive/master/%{sname}-master.tar.gz +URL: https://github.com/mwh/dragon +Packager: B. Stack <bgstack15@gmail.com> +BuildRequires: gtk3 +BuildRequires: gtk3-devel +BuildRequires: gcc + +%description +Many programs, particularly web applications, expect files to be dragged +into them now. If you don't habitually use a file manager that is a +problem. dragon is a lightweight drag-and-drop source for X that solves +this problem. + +%prep +%setup -q -c %{name} +test -d dragon && mv dragon/* . && rmdir dragon # flatten + +%build +%make_build + +%install +%{__install} -m0755 -d %{buildroot}%{_bindir} %{buildroot}%{_pkgdocdir} \ + %{buildroot}%{_mandir}/man1 +%{__install} -m0755 dragon %{buildroot}%{_bindir}/dragon-drag-and-drop +%{__install} -m0644 example/download.sh %{buildroot}%{_pkgdocdir} +%{__install} -m0644 debian/dragon-drag-and-drop.1 %{buildroot}%{_mandir}/man1 + +%clean +rm -rf %{buildroot} + +%files +%{_bindir}/* +%{_mandir}/man1/* +%doc %{_pkgdocdir}/download.sh + +%changelog +* Wed Jan 20 2021 B. Stack <bgstack15@gmail.com> - 1.1.2-1 +- Initial rpm spec |