Package Details: tetgen 1.6.0-4

Git Clone URL: https://aur.archlinux.org/tetgen.git (read-only, click to copy)
Package Base: tetgen
Description: A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator
Upstream URL: http://wias-berlin.de/software/index.jsp?id=TetGen&lang=1
Licenses: AGPL3
Submitter: deltaecho
Maintainer: entshuld
Last Packager: entshuld
Votes: 3
Popularity: 0.000000
First Submitted: 2018-04-27 09:25 (UTC)
Last Updated: 2023-10-31 11:44 (UTC)

Dependencies (1)

Required by (3)

Sources (1)

Latest Comments

carlosal1015 commented on 2023-11-01 19:39 (UTC)

Could you use as source

http://www.tetgen.org/1.5/src/tetgen1.6.0.tar.gz

haawda commented on 2022-01-11 07:08 (UTC)

Read the PKGBUILD. Do not use this software if you are unwilling to download it manually.

carlosal1015 commented on 2022-01-10 20:28 (UTC)

Hi, I have the following message error

==> Retrieving sources...
  -> Downloading tetgen1.6.0.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   273  100   273    0     0    205      0  0:00:01  0:00:01 --:--:--   205
  0     0    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0
curl: (22) The requested URL returned error: 404
==> ERROR: Failure while downloading http://wias-berlin.de/software/tetgen/1.6/src/tetgen1.6.0.tar.gz
    Aborting...
==> Removing installed dependencies...

For example, use this source.

corecode commented on 2021-06-05 23:17 (UTC)

isn't accepting GNU licenses usually implied when building/installing packages? I think we should link directly to the source at http://wias-berlin.de/software/tetgen/1.5/src/tetgen1.6.0.tar.gz

haawda commented on 2020-01-11 03:56 (UTC)

# Maintainer: Dylon Edwards <deltaecho at archlinux dot us>

pkgname='tetgen'
pkgver='1.5.1'
pkgrel=1
pkgdesc='A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator'
arch=('x86_64')
url='http://wias-berlin.de/software/index.jsp?id=TetGen&lang=1'
license=('AGPL3')
changelog="${pkgname}.changelog"
# You must accept the licensing terms before downloading the source archive:
#   http://wias-berlin.de/software/tetgen/download2.jsp
# Place the downloaded archive in $SRCDEST of your /etc/makepkg.conf
source=("local://${pkgname}${pkgver}.tar.gz")
md5sums=('2ab470d2b3c47b9edae6febe45d7a0e1')

prepare() {
    mkdir -p build
}

build() {
    cd build
    cmake ../"${pkgname}${pkgver}" \
          -DCMAKE_INSTALL_PREFIX=/usr \
          -DCMAKE_BUILD_TYPE=Release
    make
}

package() {
    cd build
    install -m 755 -D -t "${pkgdir}/usr/bin" tetgen
    install -m 644 -D -t "${pkgdir}/usr/lib" libtet.a
    install -m 644 -D -t "${pkgdir}/usr/include" ../"${pkgname}${pkgver}/tetgen.h"
}

paulequilibrio commented on 2019-09-03 15:00 (UTC)

Please, update the version to 1.5.1 :)