1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#
# anyRemote - a bluetooth remote for your PC.
#
# Copyright (C) 2007,2008 Mikhail Fedotov <anyremote@mail.ru>
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
SUBDIRS = src
EXTRA_DIST = INSTALL NEWS README COPYING VERSION AUTHORS TODO anyremote.1.gz ChangeLog doc-html keymaps cfg-data anyremote-fedora.spec anyremote-mdv.spec anyremote-suse.spec
install-data-local:
test -z $(DESTDIR)$(pkgdatadir) || mkdir -p -- . $(DESTDIR)$(pkgdatadir)
test -z $(DESTDIR)$(datadir)/doc/anyremote || mkdir -p -- . $(DESTDIR)$(datadir)/doc/anyremote
cp -r cfg-data $(DESTDIR)$(pkgdatadir)
cp -r doc-html NEWS README COPYING VERSION AUTHORS $(DESTDIR)$(datadir)/doc/anyremote/
find $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(datadir)/doc/anyremote -type f -exec chmod 644 {} \;
chmod -R a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils
find $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(datadir)/doc/anyremote -type d -exec chmod 755 {} \;
test -z $(DESTDIR)$(datadir)/man/man1 || mkdir -p -- . $(DESTDIR)$(datadir)/man/man1
cp -r anyremote.1.gz $(DESTDIR)$(datadir)/man/man1
chmod 644 $(DESTDIR)$(datadir)/man/man1/anyremote.1.gz
uninstall-local:
rm -rf $(DESTDIR)$(pkgdatadir)
rm -rf $(DESTDIR)$(datadir)/doc/anyremote
rm -f $(DESTDIR)$(datadir)/man/man1/anyremote.1.gz
|