parent
617a6b1549
commit
ea6cb9e672
@ -0,0 +1,9 @@
|
||||
aclocal.m4
|
||||
autom4te.cache/
|
||||
config.log
|
||||
config.status
|
||||
configure
|
||||
install-sh
|
||||
Makefile
|
||||
Makefile.in
|
||||
missing
|
@ -1,3 +1,3 @@
|
||||
Paper is designed and developed by:
|
||||
|
||||
Sam Hewitt <hewittsamuel@gmail.com>
|
||||
Sam Hewitt <sam@snwh.org>
|
@ -1,9 +0,0 @@
|
||||
--------------------------------------------------------------------------------
|
||||
Install Paper Icon theme
|
||||
--------------------------------------------------------------------------------
|
||||
For personal use, copying the 'Paper' folder to '$HOME/.local/share/themes' will do
|
||||
or copy 'Paper' into '/usr/share/themes' to make it available system-wide
|
||||
|
||||
Alternatively, run the provided install script:
|
||||
|
||||
bash install.sh
|
@ -0,0 +1,14 @@
|
||||
EXTRA_DIST = \
|
||||
Paper \
|
||||
COPYING \
|
||||
AUTHORS \
|
||||
README.md
|
||||
|
||||
themedir = $(datadir)/themes
|
||||
|
||||
install-data-hook:
|
||||
$(MKDIR_P) $(DESTDIR)/usr/share/themes
|
||||
cp -Rv Paper $(DESTDIR)/usr/share/themes/.
|
||||
|
||||
uninstall-hook:
|
||||
test -e $(DESTDIR)/usr/share/themes/Paper && rm -rfv $(DESTDIR)/usr/share/themes/Paper
|
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
autoreconf --force --install --symlink --warnings=all
|
||||
|
||||
if test -z "${NOCONFIGURE}"; then
|
||||
set -x
|
||||
./configure --prefix=/usr "$@"
|
||||
make clean
|
||||
fi
|
@ -0,0 +1,18 @@
|
||||
AC_INIT([Paper ], 1.1, [https://github.com/snwh/paper-gtk-theme/issues], [paper-gtk-theme], [http://snwh.org/paper])
|
||||
AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects 1.9 tar-ustar])
|
||||
AC_PREFIX_DEFAULT(/usr/local)
|
||||
AM_SILENT_RULES([yes])
|
||||
|
||||
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
AC_OUTPUT
|
||||
|
||||
AC_MSG_RESULT([
|
||||
Paper Icon Theme $VERSION
|
||||
========
|
||||
|
||||
prefix: ${prefix}
|
||||
exec_prefix: ${exec_prefix}
|
||||
datarootdir: ${datarootdir}
|
||||
|
||||
])
|
@ -1,5 +1,11 @@
|
||||
paper-gtk-theme (1.1) UNRELEASED; urgency=low
|
||||
|
||||
* Point Release.
|
||||
|
||||
-- Sam Hewitt <sam@snwh.org> Wed, 16 Mar 2016 12:00:00 -0400
|
||||
|
||||
paper-gtk-theme (1.0) UNRELEASED; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
-- Sam Hewitt <hewittsamuel@gmail.com> Thu, 18 Dec 2014 12:00:00 -0400
|
||||
-- Sam Hewitt <sam@snwh.org> Thu, 18 Dec 2014 12:00:00 -0400
|
@ -0,0 +1,20 @@
|
||||
<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:gnome="http://api.gnome.org/doap-extensions#"
|
||||
xmlns="http://usefulinc.com/ns/doap#">
|
||||
|
||||
<name xml:lang="en">paper-gtk-theme</name>
|
||||
<shortdesc xml:lang="en">Paper Theme</shortdesc>
|
||||
<homepage rdf:resource="http://snwh.org/paper" />
|
||||
<download-page rdf:resource="https://github.com/snwh/paper-gtk-theme" />
|
||||
<bug-database rdf:resource="https://github.com/snwh/paper-gtk-theme/issues" />
|
||||
<category rdf:resource="http://api.gnome.org/doap-extensions#core" />
|
||||
|
||||
<maintainer>
|
||||
<foaf:Person>
|
||||
<foaf:name>Sam Hewitt</foaf:name>
|
||||
<gnome:userid>snwh</gnome:userid>
|
||||
</foaf:Person>
|
||||
</maintainer>
|
||||
</Project>
|
Loading…
Reference in new issue