Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add yasm plan #598

Merged
merged 1 commit into from Jun 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions yasm/plan.sh
@@ -0,0 +1,22 @@
pkg_name=yasm
pkg_origin=core
pkg_version=1.3.0
pkg_description="Yasm is a complete rewrite of the NASM assembler"
pkg_upstream_url=http://yasm.tortall.net/
pkg_license=(
'Artistic-1.0-Perl'
'BSD-2-Clause' 'BSD-3-Clause'
'GPL-2.0' 'LGPL-2.0'
)
pkg_maintainer="The Habitat Maintainers <humans@habitat.sh>"
pkg_source=http://www.tortall.net/projects/yasm/releases/${pkg_name}-${pkg_version}.tar.gz
pkg_shasum=3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f
pkg_bin_dirs=(bin)
pkg_include_dirs=(include)
pkg_lib_dirs=(lib)
pkg_build_deps=(core/diffutils core/gcc core/make)
pkg_deps=(core/glibc)

do_check() {
make check
}