Package Details: maya-lookdevx 2.1.0-1

Git Clone URL: https://aur.archlinux.org/maya-lookdevx.git (read-only, click to copy)
Package Base: maya-lookdevx
Description: Artist-friendly look-development system with graph shading objects and USD materials
Upstream URL: https://help.autodesk.com/view/MAYAUL/2026/ENU/?guid=LookdevX_LookdevX_for_Maya_html
Licenses: custom
Submitter: meepzh
Maintainer: meepzh (ttc0419)
Last Packager: meepzh
Votes: 0
Popularity: 0.000000
First Submitted: 2023-12-05 01:17 (UTC)
Last Updated: 2026-05-25 02:05 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

konokaiden commented on 2025-11-11 00:27 (UTC)

Current version is 1.9.0, PKGBUILD should be modified to the following:

# Maintainer: William Tang <galaxyking0419@gmail.com>
# Maintainer: Robert Zhou <meep (dot) aur (at) meepzh (dot) com>

_mayaver=2026

pkgname=maya-lookdevx
pkgver=1.9.0
pkgrel=1
pkgdesc='Artist-friendly look-development system with graph shading objects and USD materials'
arch=('x86_64')
url='https://help.autodesk.com/view/MAYAUL/2026/ENU/?guid=LookdevX_LookdevX_for_Maya_html'
license=('custom')
depends=('maya>=2026' 'maya<2027' 'maya-usd')

DLAGENTS+=('manual::/usr/bin/echo \ \ Note: Please unbundle the rpm from the Maya download')
source=("manual://LookdevX-${pkgver}-${_mayaver}.el8.x86_64.rpm")
b2sums=('ff15dbc89fb79c8959db7b920e24e096bcdc0d91c208fa8d4a520bf03faea09566dd4e13abbcaa3a4f752f8e343c9d728f15cb0972f8d3ec1acb9013fb477246')

options=(!strip)

package() {
    mkdir -p "$pkgdir/usr/autodesk/maya$_mayaver/"{modules,plug-ins}
    mv usr/autodesk/lookdevx/maya$_mayaver/$pkgver/modules/*.mod "$pkgdir/usr/autodesk/maya$_mayaver/modules/"
    mv usr/autodesk/lookdevx/maya$_mayaver/$pkgver/lookdevx/plug-ins/* "$pkgdir/usr/autodesk/maya$_mayaver/plug-ins/"
}

1.8.0 should probably also be done, but you would need to redo the b2sum and make sure the plugin location is the same as 1.7 or 1.9 (because the two are different).

meepzh commented on 2025-06-06 03:59 (UTC)

The 1.8.0 version provided by Autodesk in Maya 2026.1 appears to be missing a file, unless I made a packaging error somewhere:

// Error: file: /usr/autodesk/maya2026/scripts/others/pluginWin.mel line 316: Unable to dynamically load : /usr/autodesk/maya2026/lookdevx/plug-ins/LookdevXMaya.so
// libMaterialXFormatMayaUSD.so.1: cannot open shared object file: No such file or directory
// Error: file: /usr/autodesk/maya2026/scripts/others/pluginWin.mel line 316: libMaterialXFormatMayaUSD.so.1: cannot open shared object file: No such file or directory (LookdevXMaya)

Here is the WIP PKGBUILD for anyone who wants to give this a try:

# Maintainer: William Tang <galaxyking0419@gmail.com>
# Maintainer: Robert Zhou <meep (dot) aur (at) meepzh (dot) com>

_mayaver=2026

pkgname=maya-lookdevx
pkgver=1.8.0
pkgrel=1
pkgdesc='Artist-friendly look-development system with graph shading objects and USD materials'
arch=('x86_64')
url='https://help.autodesk.com/view/MAYAUL/2026/ENU/?guid=LookdevX_LookdevX_for_Maya_html'
license=('custom')
depends=('maya>=2026' 'maya<2027' 'maya-usd')

DLAGENTS+=('manual::/usr/bin/echo \ \ Note: Please unbundle the rpm from the Maya download')
source=("manual://LookdevX-${pkgver}-${_mayaver}.el8.x86_64.rpm")
b2sums=('c07beb50af86a24516f392b078629aaf2d3fc00d64c27d2d16917e4c9c27755f486761bbd9ea04e46ee313f84c63eca795fece9cef672abc35d7c0b13f2f115a')

options=(!strip)

package() {
    mkdir -p "${pkgdir}/usr/autodesk/maya${_mayaver}/"{modules,lookdevx}
    mv usr/autodesk/lookdevx/maya${_mayaver}/${pkgver}/modules/*.mod "${pkgdir}/usr/autodesk/maya${_mayaver}/modules/"
    mv usr/autodesk/lookdevx/maya${_mayaver}/${pkgver}/lookdevx/* "${pkgdir}/usr/autodesk/maya${_mayaver}/lookdevx/"
}