1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

root/csw/mgar/pkg/tnef/trunk/Makefile

Revision 16916, 1.0 KB (checked in by dmichelsen, 4 months ago)

WHOLE TREE: Explicitly set GARTYPE to current default 'v2'

Line 
1NAME = tnef
2VERSION = 1.4.8
3CATEGORIES = utils
4GARTYPE = v2
5
6DESCRIPTION = Unpacks Microsoft TNEF MIME attachments
7define BLURB
8  TNEF provides a way to unpack those pesky Microsoft MS-TNEF MIME attachments.
9  It operates like tar in order to upack any files which may have been put into
10  the MS-TNEF attachment instead of being attached seperately.
11endef
12
13MASTER_SITES = http://downloads.sourceforge.net/tnef/
14DISTFILES    = $(NAME)-$(VERSION).tar.gz
15
16RUNTIME_DEP_PKGS_CSWtnef += CSWlibintl8
17
18CONFIGURE_ARGS = $(DIRPATHS)
19
20NOISALIST = 1
21
22INSTALL_SCRIPTS = custom
23
24include gar/category.mk
25
26SPKG_SOURCEURL = http://sourceforge.net/projects/tnef
27
28install-custom:
29        @echo " ==> Installing $(NAME) (custom)"
30        @rm -rf $(DESTDIR)
31        @ginstall -d $(DESTDIR)$(bindir)
32        @ginstall -d $(DESTDIR)$(docdir)/$(NAME)
33        @ginstall -d $(DESTDIR)$(mandir)/man1
34        @( cd $(WORKSRC) ; \
35           cp -r src/$(NAME) $(DESTDIR)$(bindir)/$(NAME) ; \
36           cp -r doc/$(NAME).1 $(DESTDIR)$(mandir)/man1/$(NAME).1 )
37        @$(MAKECOOKIE)
Note: See TracBrowser for help on using the browser.