Skip to content

Commit

Permalink
add gnupg
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSonnenschein committed Mar 24, 2011
1 parent 68b14f7 commit dfde00e
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -26,8 +26,8 @@
PATH=/sbin:/usr/sbin:/usr/bin:/opt/SUNWspro/bin:/opt/local/bin
BASE=$(PWD)
DESTDIR=$(BASE)/proto
SUBDIRS= bash bzip2 curl gcc gtar gzip less libexpat libidn libm libxml libz \
ncurses node.js nss-nspr ntp openssl perl rsync screen uuid vim wget
SUBDIRS= bash bzip2 curl gcc gnupg gtar gzip less libexpat libidn libm libxml \
libz ncurses node.js nss-nspr ntp openssl perl rsync screen uuid vim wget

-include Makefile.inc

Expand Down
46 changes: 46 additions & 0 deletions gnupg/Makefile
@@ -0,0 +1,46 @@
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at COPYING
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at COPYING.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright (c) 2011 Joyent Inc.
#


VER=gnupg-1.4.11
BASE=$(PWD)
DESTDIR=$(BASE)/../proto

all: $(VER)/config.status
( cd $(VER); \
gmake CC=$(GCC))

install:
mkdir -p $(DESTDIR)
( cd $(VER); \
gmake CC=/usr/bin/gcc DESTDIR=$(DESTDIR) install)

clean:
rm -rf $(VER)

$(VER)/config.status: $(VER)/configure
(cd $(VER); ./configure --prefix=/usr)

$(VER)/configure: $(VER).tar.bz2
gtar -jxf $(VER).tar.bz2
touch $(VER)/configure
Binary file added gnupg/gnupg-1.4.11.tar.bz2
Binary file not shown.

0 comments on commit dfde00e

Please sign in to comment.