Skip to content

Commit

Permalink
netbsd
Browse files Browse the repository at this point in the history
  • Loading branch information
tlevine committed Mar 9, 2014
1 parent 94e4d5f commit dbb46d7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions netbsd
@@ -0,0 +1,20 @@
#!/bin/sh
set -e
export PKG_PATH="http://ftp.NetBSD.org/pub/pkgsrc/packages/$(uname -s)/$(uname -m)/$(uname -r|cut -f '1 2' -d.)/All"

pkg_add \
git-base tmux vim mosh \
offlineimap mutt \
python33 \
wget w3m \
irssi \

src_pkgs='wip/ekg2'

for pkg in $src_pkgs; do
pkg_info $(echo $pkg|cut -d/ -f2) > /dev/null ||
(
cd /usr/pkgsrc/$pkg
make install
)
done

0 comments on commit dbb46d7

Please sign in to comment.